1. /* sfmsign.cpp by K.Tsuru */
  2. // function ID = 709
  3. /********************************
  4. SFraction class
  5. It provides the sign operator -m.
  6. *********************************/
  7. #ifndef SN_H
  8. #include "sn.h"
  9. #endif
  10. SFraction SFraction::operator-() const {
  11. SFraction result(*this);
  12. result.num.ChangeSign(709);
  13. return result;
  14. }

sfmsign.cpp : last modifiled at 2008/03/10 23:03:20(338 bytes)
created at 2015/12/22 16:07:29
The creation time of this html file is 2016/09/13 19:56:38 (Tue Sep 13 19:56:38 2016).